C 언어 코드 조각 - 16.난수계산하기(rand).c

#include <stdio.h>
#include <time.h>
#include <stdlib.h>

void main(void)
{
	int i;

	//난수 초기화
	srand((unsigned)time(NULL));

	//난수 출력
	for(i = 0;i < 5;i++)
	{
		printf("난수 %d : %d \n", i, rand());
	}
}

 

Comments


Comments are closed